home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / Net_AddrNetNum.c < prev    next >
C/C++ Source or Header  |  1988-11-21  |  2KB  |  57 lines

  1. /* 
  2.  * Net_InetAddrNetNum.c --
  3.  *
  4.  *    Return the network part of an internet address.
  5.  *
  6.  * Copyright 1987 Regents of the University of California
  7.  * All rights reserved.
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifndef lint
  18. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_AddrNetNum.c,v 1.1 88/11/21 09:09:53 mendel Exp $ SPRITE (Berkeley)";
  19. #endif not lint
  20.  
  21.  
  22. #include "sprite.h"
  23. #include "net.h"
  24.  
  25. /*
  26.  *----------------------------------------------------------------------
  27.  *
  28.  * Net_InetAddrNetNum --
  29.  *
  30.  *    Return the network portion of an internet address.
  31.  *    Handles class A/B/C network #'s.
  32.  *
  33.  * Results:
  34.  *    The network number of an IP address.
  35.  *
  36.  * Side effects:
  37.  *    None.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. unsigned int
  43. Net_InetAddrNetNum(addr)
  44.     Net_InetAddress addr;
  45. {
  46.     register Net_InetAddress i = Net_NetToHostInt(addr);
  47.  
  48.     if (NET_INET_CLASS_A_ADDR(i)) {
  49.     return (((i) & NET_INET_CLASS_A_NET_MASK) >> NET_INET_CLASS_A_SHIFT);
  50.     } else if (NET_INET_CLASS_B_ADDR(i)) {
  51.     return (((i) & NET_INET_CLASS_B_NET_MASK) >> NET_INET_CLASS_B_SHIFT);
  52.     } else {
  53.     return (((i) & NET_INET_CLASS_C_NET_MASK) >> NET_INET_CLASS_C_SHIFT);
  54.     }
  55. }
  56.  
  57.